home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / CUGUK / PROG_TOO / C027B.ZIP / MAKE / MAKEFILE < prev    next >
Text File  |  1990-03-30  |  360b  |  26 lines

  1. #
  2. # Makefile for make
  3. #
  4.  
  5. CFLAGS = -O
  6.  
  7. OBJS1 = check.o input.o macro.o reader.o rules.o readenv.o
  8. OBJS2 = main.o make.o ststuff.o
  9. #OBJS2 =
  10.  
  11. make.ttp : $(OBJS1) $(OBJS2)
  12.     cc $(OBJS1) $(OBJS2) -o make.ttp
  13.  
  14. touch.ttp : touch.c
  15.     cc touch.c -o touch.ttp
  16.  
  17.  
  18. $(OBJS1) : h.h
  19. $(OBJS2) : h.h astat.h
  20.  
  21. clean:
  22.     $(RM) *.o
  23.  
  24. clobber:
  25.     $(RM) *.o *.ttp
  26.